home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutord.EXE / 41.C < prev    next >
C/C++ Source or Header  |  1990-09-17  |  511b  |  30 lines

  1.  
  2. /* 
  3.     There may be additional include files required depending
  4.     upon the compile product you are using. Typical compilers
  5.     include Microsoft C by Microsoft or Turbo C by Boland Int'l.
  6. */
  7. #include <stdio.h>
  8. main()
  9. {
  10.     int    zx=100;
  11.  
  12.     /* zx = 100 */
  13.     mod(&zx);
  14.     /* zx = 200 */
  15.     printf("zx is %d\n",zx);
  16.  
  17. }
  18.  
  19. mod(a)
  20. int    *a;
  21. {
  22.     /* 'a' is now the address of 'zx' */
  23.     /* '*a' is the contents of 'zx' */
  24.  
  25.     printf("contents before: %d\n",*a);
  26.     *a += 100;
  27.     printf("contents after: %d\n",*a);
  28.  
  29. }
  30.